home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-01-30 | 961 b | 52 lines |
- .AUTODEPEND
- MEWELRC=c:\mewel
- !if !$d(MODEL)
- MODEL=l
- !endif
-
-
- EXEOPTS=
- #EXEOPTS= /v
-
- MAINFILE = todowin
-
- F1 = $(MAINFILE).obj
- F2 = tododlgs.obj
- F3 = todolist.obj
-
- OBJ_LIST = $(F1) $(F2) $(F3) $(MAINFILE).res
-
- .cpp.obj :
- bcc +todolst.cfg -m$(MODEL) {$< }
-
- .rc.res:
- $(MEWELRC)\rc -DMEWEL -w -p3 $(MAINFILE).rc
-
- all: $(MAINFILE).exe
-
- $(MAINFILE).exe: $(OBJ_LIST) makefile
- tlink $(EXEOPTS) -lP @&&!
- -Lc:\mewel;i:\bc\owl\lib;i:\bc\classlib\lib;i:\bc\lib+
- c0$(MODEL)+
- $(F3)+
- $(F2)+
- $(F1),+
- $(MAINFILE).EXE,NUL, winlibtl emu math$(MODEL) c$(MODEL) mowl tclassl
- !
- $(MEWELRC)\rc $(MAINFILE).res
-
-
- # ------------------------------------------------------------------------
- # Dependencies for the C files
- # ------------------------------------------------------------------------
-
-
- $(MAINFILE).res : todowin.rc
-
- $(MAINFILE).obj : $(MAINFILE).cpp
-
- tododlgs.obj : tododlgs.cpp
-
- todolist.obj : todolist.cpp
-
-